home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000013_news@columbia.edu _Sat Mar 29 13:18:08 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Return-Path: <news@columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id NAA19450
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sat, 29 Mar 1997 13:18:08 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id NAA02579
  7.     for kermit.misc@watsun; Sat, 29 Mar 1997 13:18:07 -0500 (EST)
  8. Path: news.columbia.edu!panix!news.eecs.umich.edu!news.mathworks.com!howland.erols.net!cs.utexas.edu!news.cs.utah.edu!cc.usu.edu!jrd
  9. From: jrd@cc.usu.edu (Joe Doupnik)
  10. Newsgroups: comp.protocols.kermit.misc
  11. Subject: Re: MSK3.15 -- Downloading problems
  12. Message-ID: <1997Mar29.104933.96091@cc.usu.edu>
  13. Date: 29 Mar 97 10:49:33 MDT
  14. References: <Pine.SUN.3.91.970328032204.7453A-100000@monroe.lib.mi.us>
  15. Organization: Utah State University
  16. Lines: 49
  17. Xref: news.columbia.edu comp.protocols.kermit.misc:6828
  18.  
  19. In article <Pine.SUN.3.91.970328032204.7453A-100000@monroe.lib.mi.us>, "Jason \"PsychoSy\" Sizemore" <jsizemor@monroe.lib.mi.us> writes:
  20. > My local ISP uses C-Kermit. I was using Telix for Kermit downloads but it 
  21. > makes my arteries harden. I recently got MS-Kermit for Dos version 3.15 
  22. > and when I try to download a file from my ISP, MSK will go to the 
  23. > "receiving file" screen and just sit there. I can not get the data unless 
  24. > I hit the "retry" button <enter> every 3 seconds. If I hit this button 
  25. > any sooner or later, my "retry" counter goes up and ultimately I use my 
  26. > limit of retries. I could set the retry limit higher but that still does 
  27. > not help with the real situation. 
  28. > My guess is that my side of Kermit is not sending the RTS signal to my 
  29. > ISP or my configuation is wrong. I basically used the configuration of my 
  30. > Telix as a small guide the configuration. Here's what I have MSK 
  31. > configured to:
  32. > SET PORT 2, SPEED 57600, FLOW RTS/CTS, WINDOW 3 (OR 4)
  33.  
  34.     I presume these are separately stated commands.
  35.  
  36. > SET CONTROL UNPREFIX ALL
  37. > SET CONTROL PREFIX 0 1 129
  38.  
  39.     Stop here. We warn do not unprefix unless you know the channel
  40. will pass those bytes intact. Many/most channels are not that clean, so
  41. don't do that in the beginning.
  42.  
  43. > SET TERM BYTE 8
  44. > SET PARITY NONE
  45. > SET RECEIVE QUOTE 35
  46. > SET RECEIVE START-OF-PACKET 1
  47. > SET RECEIVE PACKET-LENGTH 2000
  48. > SET END-OF-LINE 13
  49.  
  50.     There is no reason to play with the protocol codes. The defaults
  51. are good. Thus remove SET REC QUOTE, SET REC START, SET END-OF-LINE.
  52.  
  53. > I've also tried to SET PARITY SPACE but that does not work. 
  54. > I'm using an Intel 144/144e Fax External modem, IBM 386dx w/Dos 5.0 and 
  55. > the SIIG HighSpeed Serial I/O Pro card (16550 Uart)
  56. > Another thing is as soon as the file transfer begins, I have to hit the 
  57. > "enter" key at least twice for the "filename" to be listed. 
  58.  
  59.     The modem itself must support RTS/CTS flow control, and the cable
  60. must carry the signals too. But I think your problem is the channel is
  61. reacting to bare control codes from that SET UNPREFIX command.
  62.     It does pay to read the instructions, and to start from a "known
  63. good" situation. 
  64.     Joe D.